home *** CD-ROM | disk | FTP | other *** search
Korn shell script | 1995-06-20 | 170 b | 10 lines |
- #!/bin/ksh
- #
- # Destroy authorization.
- xauth -f /.Xauthority remove $DISPLAY
- host=${DISPLAY%%:*}
- if [$host = ""]
- then
- xauth -f /.Xauthority remove $(hostname)$DISPLAY
- fi
-